home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / programer2 / rink / Docs / Glossary < prev    next >
Text File  |  1995-06-25  |  2KB  |  44 lines

  1.  
  2. Glossary of terms used
  3. rink documentation, (c) Ben Summers 1995
  4.  
  5.  
  6. Segment      A chunk of code which is loaded into the main program, and is
  7.              linked into the main program when it is loaded.
  8.  
  9. Links file   A compact file listing the necessary links which the rink run
  10.              time system needs to perform when it loads the segement.
  11.  
  12. Parent       The main program which calls the loaded segments.
  13.  
  14. Header description file
  15.              The file which describes the header a segment gets. You should
  16.              only need one of these for all the segments.
  17.  
  18. named function
  19.              A function withing the segment which has a name attached to it
  20.              rather than being accessed by a number.
  21.  
  22. rink         The title of this system.
  23.  
  24. rink run time system
  25.              The code linked into the parent to load and unload segments
  26.              and to provide pointers to segment functions.
  27.  
  28. rink         The program which links AOF files to produce segments and
  29.              links files.
  30.  
  31. rinkptr      The program which creates an AOF file to create the pointer
  32.              block and outputs a map of this for rink.
  33.  
  34. extractsym   A program to extract symbols from AOF and ALF (library) files
  35.              to help produce pointer blocks maps.
  36.              
  37. pointer block
  38.              A block of pointers to symbols in the main program created
  39.              by rinkptr from a pointer block map. This block tells the
  40.              run time system where all the functions are in your program
  41.              so it can link to them.
  42.  
  43.  
  44.